<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.locationContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.locBlock {
    display: flex;
    flex-direction: row;
    flex: 0 0 45%;
    padding: 0.25em;
    background: #f5f5f5;
    margin: 0.5em;
}

.locImg {
    width: 111px;
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.locText {
    display: flex;
    flex-direction: column;
    padding-left: 1em;
    flex-wrap: wrap;
    width: 70%;
    border-left: 1px solid #003b8d;
}

.locBlock .locText a {
    color: #003b8d;
}

.locBlock .locText a:hover,
.locBlock .locText a:focus {
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .locationContainer {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .locImg {
        width: 20%;
    }
}</pre></body></html>